home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Jasc Software, Inc.',
- 'Copyright': u'Copyright (c) 2004 Jasc Software, Inc. All rights reserved.',
- 'Description': u'',
- 'Host': u'Paint Shop Pro 9',
- 'Host Version': u'9.00'
- }
-
- def Preset_Sculpture():
- return {
- 'Ambience': -70,
- 'Angle': 315,
- 'Color': (255,0,0),
- 'Depth': 60,
- 'Elevation': 40,
- 'Intensity': 75,
- 'PatternName': u'Canvas',
- 'Shininess': 10,
- 'Size': 100,
- 'Smoothness': 10,
- 'Category': u'All',
- 'GeneralSettings': {
- 'ExecutionMode': App.Constants.ExecutionMode.Default,
- 'DialogPlacement': {
- 'ShowMaximized': False,
- 'Rect': ((321,202), 996, 1095)
- },
- 'PreviewVisible': True,
- 'AutoProof': False,
- 'AutoActionMode': App.Constants.AutoActionMode.Match
- }
- }
-
- def Do(Environment):
- # Sculpture
- App.Do( Environment, 'Sculpture', Preset_Sculpture())
-
-